home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
timetest
/
timet.dpr
< prev
next >
Wrap
Text File
|
1995-12-22
|
158b
|
13 lines
program Timet;
uses
Forms,
Timer in 'TIMER.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.